Contains the result from Cloud query operation.
- T
- Must be KiiCorp.Cloud.Storage.KiiObject
See Also: Inherited members from List<T>.
[read-only] | HasNext | bool . Gets a value whether there are more results. |
[read-only] | NextKiiQuery | KiiQuery . Gets the next kii query. |
|
GetNextQueryResult
()Fetches the query result of next page |
|
|
GetNextQueryResult
(KiiQueryCallback<T>)Fetches the query result of next page |
Fetches the query result of next pageSyntax
public KiiQueryResult<T> GetNextQueryResult ()Returns
The next query result.Exceptions
Type Reason InvalidOperationException Is thrown when an operation cannot be performed. SystemException SystemException is the base class for all exceptions defined by the system. Remarks
Same as calling KiiBucket.Query(KiiQuery) with NextKiiQueryRequirements
Namespace: KiiCorp.Cloud.Storage
Assembly: KiiCloudStorageSDK (in KiiCloudStorageSDK.dll)
Assembly Versions: 3.2.10.0
Fetches the query result of next pageSyntax
public void GetNextQueryResult (KiiQueryCallback<T> callback)Parameters
- callback
- Callback.
Returns
The next query result.Remarks
Same as calling KiiBucket.Query(KiiQuery) with NextKiiQueryRequirements
Namespace: KiiCorp.Cloud.Storage
Assembly: KiiCloudStorageSDK (in KiiCloudStorageSDK.dll)
Assembly Versions: 3.2.10.0
Gets a value whether there are more results.Syntax
public bool HasNext { get; }Value
true if there are many results of query; otherwise, false.Remarks
If developers cannot estimate the number of results, they can use this property.Requirements
Namespace: KiiCorp.Cloud.Storage
Assembly: KiiCloudStorageSDK (in KiiCloudStorageSDK.dll)
Assembly Versions: 3.2.10.0
Gets the next kii query.Syntax
public KiiQuery NextKiiQuery { get; }Value
KiiCorp.Cloud.Storage.KiiQuery if there are many results ; otherwise null.Remarks
Requirements
Namespace: KiiCorp.Cloud.Storage
Assembly: KiiCloudStorageSDK (in KiiCloudStorageSDK.dll)
Assembly Versions: 3.2.10.0